Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
The is-promise npm package is a simple utility that checks if a given object is a promise. It is useful for ensuring that a value conforms to the Promise interface, which is essential in asynchronous programming.
Check if a value is a promise
This feature allows you to check if a given value is a promise. The function returns true if the value is a promise and false otherwise.
const isPromise = require('is-promise');
const promise = new Promise((resolve, reject) => {});
const notPromise = {};
console.log(isPromise(promise)); // true
console.log(isPromise(notPromise)); // false
The p-is-promise package provides similar functionality to is-promise by checking if a value is a promise. It is also lightweight and straightforward to use, making it a good alternative.
The is-promise-like package checks if a value is promise-like, meaning it has a then method. This package is slightly more lenient than is-promise, as it does not require the value to be an actual Promise object.
Test whether an object looks like a promises-a+ promise
$ npm install is-promise
You can also use it client side via npm.
import isPromise from 'is-promise';
isPromise(Promise.resolve());//=>true
isPromise({then:function () {...}});//=>true
isPromise(null);//=>false
isPromise({});//=>false
isPromise({then: true})//=>false
MIT
FAQs
Test whether an object looks like a promises-a+ promise
The npm package is-promise receives a total of 10,751,473 weekly downloads. As such, is-promise popularity was classified as popular.
We found that is-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.